Code
<html> <body> <form> <input type="submit" value="Click me" onclick="return ClickButton()" /> <input type="text" id="TextBox1" /> </form> <script type="text/javascript"> function ClickButton() { _doPostBack("TextBox1", "Test"); return false; }</script> </body> </html>
Output